home *** CD-ROM | disk | FTP | other *** search
/ Borland JBuilder 6 / jbuilder6.iso / Easy Applet Builder v1.7 / _SETUP.1 / StatusBarScroller.class (.txt) < prev    next >
Encoding:
Java Class File  |  2001-11-06  |  4.0 KB  |  141 lines

  1. import java.applet.Applet;
  2. import java.awt.Color;
  3. import java.awt.Component;
  4. import java.net.URL;
  5.  
  6. public class StatusBarScroller extends Applet implements Runnable {
  7.    private String text;
  8.    // $FF: renamed from: wi int
  9.    private int field_0;
  10.    // $FF: renamed from: he int
  11.    private int field_1;
  12.    private Thread thread;
  13.    private int pause = 50;
  14.  
  15.    public String getAppletInfo() {
  16.       return "Name: StatusBarScroller\r\nAuthor: Taiji Software\r\n";
  17.    }
  18.  
  19.    public void register() {
  20.       try {
  21.          URL u = new URL("http://www.taijisoftware.com");
  22.          ((Applet)this).getAppletContext().showDocument(u, "_blank");
  23.       } catch (Exception e) {
  24.          System.out.println(e);
  25.          this.stop();
  26.       }
  27.    }
  28.  
  29.    public void init() {
  30.       String codeBase = null;
  31.  
  32.       try {
  33.          codeBase = (new URL(((Applet)this).getCodeBase().toString())).getHost();
  34.          System.out.println("Copyright 1999, 2001 Taiji Software(tm)\nYour domain name is : " + codeBase);
  35.          codeBase = codeBase.toUpperCase();
  36.       } catch (Exception var9) {
  37.       }
  38.  
  39.       if (!((Applet)this).getCodeBase().toString().toUpperCase().startsWith("FILE") || ((Applet)this).getParameter("debug") != null) {
  40.          String regCode = ((Applet)this).getParameter("registration_code");
  41.          if (regCode == null) {
  42.             regCode = ((Applet)this).getParameter("reg_domain");
  43.             if (regCode == null) {
  44.                this.register();
  45.             } else {
  46.                if (regCode.length() == codeBase.length() + 4 && !codeBase.startsWith("WWW.")) {
  47.                   codeBase = "WWW." + codeBase;
  48.                } else if (regCode.length() == codeBase.length() - 4 && codeBase.startsWith("WWW.")) {
  49.                   codeBase = codeBase.substring(4);
  50.                }
  51.  
  52.                char[] chars = new char[codeBase.length()];
  53.                codeBase.getChars(0, codeBase.length(), chars, 0);
  54.                String key = new String("haricot");
  55.                char[] chars2 = new char[key.length()];
  56.                key.getChars(0, key.length(), chars2, 0);
  57.  
  58.                for(int i = 0; i < codeBase.length(); ++i) {
  59.                   int j;
  60.                   if (i >= key.length()) {
  61.                      j = i - key.length() * (i / key.length());
  62.                   } else {
  63.                      j = i;
  64.                   }
  65.  
  66.                   chars[i] += chars2[j];
  67.                   chars[i] = (char)(chars[i] - chars[i] / 26 * 26 + 97);
  68.                }
  69.  
  70.                String res = new String(chars);
  71.                if (!res.equalsIgnoreCase(regCode)) {
  72.                   this.register();
  73.                }
  74.             }
  75.          } else if (!regCode.equals("settevercsedegnamiaj") && !regCode.equals("8078")) {
  76.             this.register();
  77.          }
  78.       }
  79.  
  80.       this.field_0 = ((Component)this).getSize().width;
  81.       this.field_1 = ((Component)this).getSize().height;
  82.       String s = ((Applet)this).getParameter("pause");
  83.       if (s != null) {
  84.          this.pause = Integer.parseInt(s);
  85.       }
  86.  
  87.       this.text = ((Applet)this).getParameter("text");
  88.       this.text = "                                                                                                " + this.text;
  89.       ((Component)this).setBackground(this.getColor("background_color"));
  90.       this.thread = new Thread(this);
  91.       this.thread.start();
  92.    }
  93.  
  94.    public Color getColor(String param) {
  95.       String s = ((Applet)this).getParameter(param);
  96.       if (s != null) {
  97.          if (s.substring(0, 1).equals("#")) {
  98.             s = s.substring(1);
  99.             int i = Integer.parseInt(s, 16);
  100.             return new Color(i);
  101.          } else {
  102.             return null;
  103.          }
  104.       } else {
  105.          return null;
  106.       }
  107.    }
  108.  
  109.    public void run() {
  110.       int l = 0;
  111.  
  112.       while(true) {
  113.          try {
  114.             ((Applet)this).showStatus(this.text.substring(l));
  115.             Thread.sleep((long)this.pause);
  116.          } catch (Exception var2) {
  117.          }
  118.  
  119.          ++l;
  120.          if (l >= this.text.length()) {
  121.             l = 0;
  122.          }
  123.       }
  124.    }
  125.  
  126.    public void start() {
  127.       if (this.thread == null) {
  128.          this.thread = new Thread(this);
  129.          this.thread.start();
  130.       }
  131.  
  132.    }
  133.  
  134.    public void stop() {
  135.       if (this.thread != null) {
  136.          this.thread = null;
  137.       }
  138.  
  139.    }
  140. }
  141.